home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1833
/
1833.xpi
/
chrome
/
yoono.jar
/
ff3
/
bookmarks-restore.js
next >
Wrap
Text File
|
2009-12-16
|
476b
|
23 lines
function backup ( file ) {
try {
var ieSvc = CL["@mozilla.org/browser/places/import-export-service;1"].getService(CI.nsIPlacesImportExportService);
ieSvc.exportHTMLToFile(file, true);
} catch(e) {
log.exception(e);
}
}
function restore ( file ) {
try {
var ieSvc = CL["@mozilla.org/browser/places/import-export-service;1"].getService(CI.nsIPlacesImportExportService);
ieSvc.importHTMLFromFile(file, true);
} catch(e) {
log.exception(e);
}
}